home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Tele
/
C
/
Comet2.1.3.cpt
/
emlib
/
makefile
< prev
next >
Wrap
Makefile
|
1991-06-20
|
1KB
|
48 lines
#
# Copyright Cornell University 1986. All rights are reserved.
#
# makefile for em terminal emulator library
DEFS=-DSIZETOPCONTROLS -DINITHEAP -DENVIRONS -DSCRIPTMGR -DVARVTSIZE
# -DNOSCRDUMP disable FKEY trapping
# -DUSEHEX use hex numbers in set key dialog
# -DSIZETOPCONTROLS top controls are dynamically sized
# -DINITHEAP
# -DVARVTSIZE h19/VT emulator size can be reconfigured in config
QDOBJS=macinit.o printf.o key.o macro.o h19key.o \
prettywind.o setscript.o
#blank.o
all: em.lib nullcurset.o c19ftnull.o emstub.o
.c.o:
date
echo '---> '$*.c; c '+N' $(CFLAGS) $(DEFS) -o $@ $*.c
duplicate -y '$*.c' hd:'$*.c'
.asm.o:
date
echo '---> '$*.asm; as $(AFLAGS) -o $@ $*.asm
em.lib: $(QDOBJS)
date
lb em.lib $(QDOBJS)
cp -y em.lib $(LIB)
echo '===> em.lib make complete'
nullcurset.o: nullcurset.c
c nullcurset.c
cp -y nullcurset.o $(LIB)
c19ftnull.o: c19ftnull.c
c c19ftnull.c
cp -y c19ftnull.o $(LIB)
emstub.o: emstub.c
c emstub.c
cp -y emstub.o $(LIB)